home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FM Towns: Free Software Collection 10
/
FM Towns Free Software Collection 10.iso
/
ms_dos
/
tool
/
fwcp
/
src
/
tree.h
< prev
Wrap
Text File
|
1995-03-06
|
299b
|
14 lines
typedef struct _DIRTREE {
struct _DIRTREE *next;
struct _DIRTREE *root;
struct _DIRTREE *child;
struct _DIRTREE *link;
int flag;
char name[14];
} DIRTREE;
char *pathtree(DIRTREE *dp);
char *strtree(DIRTREE *dp);
void closetree(DIRTREE *dp);
DIRTREE *opentree(DIRTREE *top);